62849fce562f4950d963148fcba85e2a26bff3b1,androidstudio/udesksdk/Udesk_Separate_UI/src/main/java/cn/udesk/presenter/ChatActivityPresenter.java,ChatActivityPresenter,startRetryMsg,#MessageInfo#,754
Before Change
System.currentTimeMillis());
} else if (message.getMsgtype() == UdeskConst.ChatMsgTypeString.TYPE_IMAGE) {
upLoadImageFile(message.getLocalPath(), message);
} else if (message.getMsgtype() == UdeskConst.ChatMsgTypeString.TYPE_AUDIO) {
upLoadVodieFile(message.getLocalPath(), message);
}
return;
After Change
System.currentTimeMillis());
} else if (message.getMsgtype().equals( UdeskConst.ChatMsgTypeString.TYPE_IMAGE)) {
upLoadImageFile(message.getLocalPath(), message);
} else if (message.getMsgtype().equals(UdeskConst.ChatMsgTypeString.TYPE_AUDIO)) {
upLoadVodieFile(message.getLocalPath(), message);
}
return;